home *** CD-ROM | disk | FTP | other *** search
/ Amiga Tools 5 / Amiga Tools 5.iso / tools / usefull / usefull libs / expname / include / libraries / expname.h < prev    next >
Encoding:
C/C++ Source or Header  |  1996-04-14  |  1.6 KB  |  53 lines

  1. #ifndef LIBRARIES_EXPNAME_H
  2. #define LIBRARIES_EXPNAME_H     (1)
  3. /*
  4. **      $VER: expname.i 2.0 (8.4.96)
  5. **
  6. **      expname.library definitions
  7. **
  8. **      (C) Copyright 1995-96 Richard Koerber
  9. **      All Rights Reserved.
  10. */
  11.  
  12. #ifndef EXEC_TYPES_H
  13. #include 'exec/types.h'
  14. #endif
  15.  
  16. #ifndef EXEC_LIBRARIES_H
  17. #include 'exec/libraries.h'
  18. #endif
  19.  
  20. /* ------------------------------------------------------------------------
  21. **  Generic library informations
  22. */
  23. #define EXPNAMEVERSION  (2)
  24. struct ExpnameBase {
  25.         struct  Library enb_LibNode;
  26. };
  27.  
  28. #define EXPNAMEBUFLEN   (50)
  29.  
  30. /* ------------------------------------------------------------------------
  31. **  String Types
  32. */
  33. #define EXPTYPE_SYSTEM  (0)     /*  System (Amiga,DraCo,...) */
  34. #define EXPTYPE_CPU     (1)     /*  CPU (68000,68010,...,68060) */
  35. #define EXPTYPE_FPU     (2)     /*  FPU (---,68881,68882,68040,68060) */
  36. #define EXPTYPE_MMU     (3)     /*  MMU (---,68852,68030,68040,68060) */
  37. #define EXPTYPE_OSVER   (4)     /*  OS Version (V*.*) */
  38. #define EXPTYPE_EXECVER (5)     /*  Exec Version (V*.*) */
  39. #define EXPTYPE_WBVER   (6)     /*  Workbench Version (---,V*.*) */
  40. #define EXPTYPE_ROMSIZE (7)     /*  OS ROM Size (*KB, *MB) */
  41. #define EXPTYPE_CHIPSET (8)     /*  Chipset (OCS,ECS,AGA,DraCo) */
  42. #define EXPTYPE_GFXSYS  (9)     /*  Graphics system (AmigaOS, CyberGraphX, ...) */
  43. #define EXPTYPE_CHIPRAM (10)    /*  Chip RAM (*KB, *MB, *GB) */
  44. #define EXPTYPE_FASTRAM (11)    /*  Fast RAM (*KB, *MB, *GB) */
  45. #define EXPTYPE_RAM     (12)    /*  Total RAM (*KB, *MB, *GB) */
  46.  
  47. /* ------------------------------------------------------------------------
  48. **  That's all...
  49. */
  50. #endif
  51.  
  52.  
  53.